home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 020 / amigatoatari / convert.mak < prev    next >
Text File  |  1995-03-17  |  2KB  |  91 lines

  1. !----
  2. !
  3. ! This is the makefile for CVT.EXE for the IBM-PC.  If you don't
  4. ! have MAKE, then don't sweat it -- you can use the binaries or compile
  5. ! it by hand.
  6. !
  7. ! Bugs, comments, letter bombs to:
  8. !
  9. !    Landon Dyer        G.DYER@SU-SCORE.ARPA
  10. !    Atari Corp.        ... {hoptoad, lll-crg!vecpyr}!atari!dyer
  11. !    1196 Borregas Ave
  12. !    Sunnyvale, CA 94088
  13. !
  14. !----
  15. !
  16. ! No warranty is expressed or implied.  This is public domain software,
  17. ! free for the asking.  You may modify it however you wish, but you are
  18. ! not permitted to sell this work, or any modification of it.
  19. !
  20. !----
  21. !
  22. ! You will need your OWN quicksort, as the version I use is from 4.2BSD,
  23. ! and I'm not sure if it's legal to distribute it.
  24. !
  25. !----
  26.  
  27. !
  28. ! Change these to reflect where the libraries and so on are on your system.
  29. ! (This is for Lattice C 2.11 or something like that).
  30. !
  31. BIN = \bin\
  32. CRUN = \bin\cs
  33. CLIB = \bin\lcs
  34.  
  35. SUBRS = binfio.obj efopen.obj
  36. CONVERTOBJS = convertm.obj convert.obj longio.obj qsort.obj #(SUBRS)
  37.  
  38. cvt.exe : #(CONVERTOBJS)
  39.     link #(BIN)cs #(CONVERTOBJS),cvt,,#(BIN)lcs
  40.  
  41. convertm.obj : convertm.c
  42.     lc1 convertm
  43.     lc2 convertm
  44.  
  45. convert.obj : convert.c
  46.     lc1 convert
  47.     lc2 convert
  48.  
  49. qsort.obj : qsort.c
  50.     lc1 qsort
  51.     lc2 qsort
  52.  
  53. longio.obj : longio.c
  54.     lc1 longio
  55.     lc2 longio
  56.  
  57. !
  58. ! Random tools (I port these from
  59. ! system to system...):
  60. !
  61. binfio.obj : binfio.c
  62.     lc1 binfio
  63.     lc2 binfio
  64.  
  65. efopen.obj : efopen.c
  66.     lc1 efopen
  67.     lc2 efopen
  68.  
  69. !
  70. ! Copy CONVERT source to transfer disk
  71. !
  72. transfer :
  73.     copy convert.h a:
  74.     copy convert.c a:
  75.     copy convert.mak a:
  76.     copy convert.man a:
  77.     copy convert.obj a:
  78.     copy cvt.exe a:
  79.     copy convertm.c a:
  80.     copy convertm.obj a:
  81.     copy longio.c a:
  82.     copy longio.obj a:
  83.     copy binfio.c a:
  84.     copy binfio.obj a:
  85.     copy efopen.c a:
  86.     copy efopen.obj a:
  87. !    copy qsort.c a:        ! I can't distribute source for this!!!
  88.     copy qsort.obj a:
  89.     copy \bin\make.bat a:
  90.     copy \bin\makeexe.exe a:
  91.